C 언어 코드 조각 - 04.세계표준시(gmtime).c
C 언어 코드 조각 - 04.세계표준시(gmtime).c
#include <stdio.h>
#include <time.h> //gmtime()
void main(void)
{
//초 단위
time_t now;
//시간 구조체
struct tm t;
//초 반환
time(&now);
//세계 표준 시간 반환 : localtime() -> gmtime()
t = *gmtime(&now);
//세계 표준 시간 출력
printf("세계 표준시 : %4d.%d.%d %d:%d:%d \n"
, t.tm_year + 1900
, t.tm_mon + 1
, t.tm_mday
, t.tm_hour
, t.tm_min
, t.tm_sec
);
}
Comments
Comments are closed